[INFO] fetching crate entelix-graph-derive 0.6.1...
[INFO] fixing entelix-graph-derive-0.6.1 against try#622891a4e29178280638a6b63a8908bde2c0c854+cargoflags=-Zfix-edition=start=2015 for pr-157817-2
[INFO] extracting crate entelix-graph-derive 0.6.1 into /workspace/builds/worker-3-tc1/source
[INFO] started tweaking crates.io crate entelix-graph-derive 0.6.1
[INFO] removed 0 missing tests
[INFO] finished tweaking crates.io crate entelix-graph-derive 0.6.1
[INFO] tweaked toml for crates.io crate entelix-graph-derive 0.6.1 written to /workspace/builds/worker-3-tc1/source/Cargo.toml
[INFO] validating manifest of crates.io crate entelix-graph-derive 0.6.1 on toolchain 622891a4e29178280638a6b63a8908bde2c0c854
[INFO] running `Command { std: CARGO_HOME="/workspace/cargo-home" RUSTUP_HOME="/workspace/rustup-home" "/workspace/cargo-home/bin/cargo" "+622891a4e29178280638a6b63a8908bde2c0c854" "metadata" "--manifest-path" "Cargo.toml" "--no-deps", kill_on_drop: false }`
[INFO] crate crates.io crate entelix-graph-derive 0.6.1 already has a lockfile, it will not be regenerated
[INFO] running `Command { std: CARGO_HOME="/workspace/cargo-home" RUSTUP_HOME="/workspace/rustup-home" "/workspace/cargo-home/bin/cargo" "+622891a4e29178280638a6b63a8908bde2c0c854" "fetch" "--manifest-path" "Cargo.toml", kill_on_drop: false }`
[INFO] [stderr]     Blocking waiting for file lock on package cache
[INFO] running `Command { std: "docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-3-tc1/source:/opt/rustwide/workdir:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-3-tc1/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/cargo-home:/opt/rustwide/cargo-home:ro,Z" "-v" "/var/lib/crater-agent-workspace/rustup-home:/opt/rustwide/rustup-home:ro,Z" "-m" "1610612736" "--network" "none" "ghcr.io/rust-lang/crates-build-env/linux@sha256:3a6becf2bc8dde7f3fa57ede90e4f284e72d296796fc446bbb1e2c7cc0530151" "sleep" "infinity", kill_on_drop: false }`
[INFO] [stdout] 546b2a4475c298d595f0f7d1165d79607b68d5b28c6409c2500470fd0189577f
[INFO] running `Command { std: "docker" "start" "546b2a4475c298d595f0f7d1165d79607b68d5b28c6409c2500470fd0189577f", kill_on_drop: false }`
[INFO] running `Command { std: "docker" "exec" "-e" "SOURCE_DIR=/opt/rustwide/workdir" "-e" "CARGO_HOME=/opt/rustwide/cargo-home" "-e" "RUSTUP_HOME=/opt/rustwide/rustup-home" "-e" "CARGO_TARGET_DIR=/opt/rustwide/target" "-w" "/opt/rustwide/workdir" "--user" "0:0" "546b2a4475c298d595f0f7d1165d79607b68d5b28c6409c2500470fd0189577f" "/opt/rustwide/cargo-home/bin/cargo" "+622891a4e29178280638a6b63a8908bde2c0c854" "metadata" "--no-deps" "--format-version=1", kill_on_drop: false }`
[INFO] running `Command { std: "docker" "inspect" "546b2a4475c298d595f0f7d1165d79607b68d5b28c6409c2500470fd0189577f", kill_on_drop: false }`
[INFO] running `Command { std: "docker" "exec" "-e" "SOURCE_DIR=/opt/rustwide/workdir" "-e" "CARGO_HOME=/opt/rustwide/cargo-home" "-e" "RUSTUP_HOME=/opt/rustwide/rustup-home" "-e" "CARGO_TARGET_DIR=/opt/rustwide/target" "-e" "CARGO_INCREMENTAL=0" "-e" "RUST_BACKTRACE=full" "-e" "RUSTFLAGS=" "-e" "RUSTDOCFLAGS=" "-w" "/opt/rustwide/workdir" "--user" "0:0" "546b2a4475c298d595f0f7d1165d79607b68d5b28c6409c2500470fd0189577f" "/opt/rustwide/cargo-home/bin/cargo" "+622891a4e29178280638a6b63a8908bde2c0c854" "fix" "--allow-no-vcs" "--allow-dirty" "--frozen" "--all" "--all-targets" "--message-format=json" "-Zfix-edition=start=2015", kill_on_drop: false }`
[INFO] [stderr]    Compiling syn v2.0.117
[INFO] [stderr]     Checking entelix-graph-derive v0.6.1 (/opt/rustwide/workdir)
[INFO] [stdout] error[E0432]: unresolved import `entelix_graph`
[INFO] [stdout]  --> tests/derive_state_merge.rs:8:5
[INFO] [stdout]   |
[INFO] [stdout] 8 | use entelix_graph::{Annotated, Append, Max, MergeMap, Replace, StateMerge};
[INFO] [stdout]   |     ^^^^^^^^^^^^^ use of unresolved module or unlinked crate `entelix_graph`
[INFO] [stdout]   |
[INFO] [stdout]   = help: if you wanted to use a crate named `entelix_graph`, use `cargo add entelix_graph` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0599]: no method named `merge` found for struct `Mixed` in the current scope
[INFO] [stdout]   --> tests/derive_state_merge.rs:43:26
[INFO] [stdout]    |
[INFO] [stdout] 12 | struct Mixed {
[INFO] [stdout]    | ------------ method `merge` not found for this struct
[INFO] [stdout] ...
[INFO] [stdout] 43 |     let merged = current.merge(update);
[INFO] [stdout]    |                          ^^^^^ method not found in `Mixed`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0599]: no method named `merge` found for struct `AllAnnotated` in the current scope
[INFO] [stdout]   --> tests/derive_state_merge.rs:66:6
[INFO] [stdout]    |
[INFO] [stdout] 55 |   struct AllAnnotated {
[INFO] [stdout]    |   ------------------- method `merge` not found for this struct
[INFO] [stdout] ...
[INFO] [stdout] 62 |       let merged = AllAnnotated {
[INFO] [stdout]    |  __________________-
[INFO] [stdout] 63 | |         a: Annotated::new(vec![1, 2], Append::new()),
[INFO] [stdout] 64 | |         b: Annotated::new(3, Max::new()),
[INFO] [stdout] 65 | |     }
[INFO] [stdout] 66 | |     .merge(AllAnnotated {
[INFO] [stdout]    | |     -^^^^^ method not found in `AllAnnotated`
[INFO] [stdout]    | |_____|
[INFO] [stdout]    |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0599]: no method named `merge` found for struct `AllPlain` in the current scope
[INFO] [stdout]   --> tests/derive_state_merge.rs:86:6
[INFO] [stdout]    |
[INFO] [stdout] 75 |   struct AllPlain {
[INFO] [stdout]    |   --------------- method `merge` not found for this struct
[INFO] [stdout] ...
[INFO] [stdout] 82 |       let merged = AllPlain {
[INFO] [stdout]    |  __________________-
[INFO] [stdout] 83 | |         name: "old".into(),
[INFO] [stdout] 84 | |         value: 1,
[INFO] [stdout] 85 | |     }
[INFO] [stdout] 86 | |     .merge(AllPlain {
[INFO] [stdout]    | |     -^^^^^ method not found in `AllPlain`
[INFO] [stdout]    | |_____|
[INFO] [stdout]    |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0599]: no method named `merge` found for struct `ExplicitReplace` in the current scope
[INFO] [stdout]    --> tests/derive_state_merge.rs:106:6
[INFO] [stdout]     |
[INFO] [stdout]  95 |   struct ExplicitReplace {
[INFO] [stdout]     |   ---------------------- method `merge` not found for this struct
[INFO] [stdout] ...
[INFO] [stdout] 103 |       let merged = ExplicitReplace {
[INFO] [stdout]     |  __________________-
[INFO] [stdout] 104 | |         label: Annotated::new("old".into(), Replace),
[INFO] [stdout] 105 | |     }
[INFO] [stdout] 106 | |     .merge(ExplicitReplace {
[INFO] [stdout]     | |     -^^^^^ method not found in `ExplicitReplace`
[INFO] [stdout]     | |_____|
[INFO] [stdout]     |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find type `MixedContribution` in this scope
[INFO] [stdout]    --> tests/derive_state_merge.rs:126:24
[INFO] [stdout]     |
[INFO] [stdout] 126 |     let contribution = MixedContribution::default()
[INFO] [stdout]     |                        ^^^^^^^^^^^^^^^^^ use of undeclared type `MixedContribution`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0599]: no method named `merge_contribution` found for struct `Mixed` in the current scope
[INFO] [stdout]    --> tests/derive_state_merge.rs:137:26
[INFO] [stdout]     |
[INFO] [stdout]  12 | struct Mixed {
[INFO] [stdout]     | ------------ method `merge_contribution` not found for this struct
[INFO] [stdout] ...
[INFO] [stdout] 137 |     let merged = current.merge_contribution(contribution);
[INFO] [stdout]     |                          ^^^^^^^^^^^^^^^^^^ method not found in `Mixed`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find type `MixedContribution` in this scope
[INFO] [stdout]    --> tests/derive_state_merge.rs:155:24
[INFO] [stdout]     |
[INFO] [stdout] 155 |     let contribution = MixedContribution::default();
[INFO] [stdout]     |                        ^^^^^^^^^^^^^^^^^ use of undeclared type `MixedContribution`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0599]: no method named `merge_contribution` found for struct `Mixed` in the current scope
[INFO] [stdout]    --> tests/derive_state_merge.rs:163:26
[INFO] [stdout]     |
[INFO] [stdout]  12 | struct Mixed {
[INFO] [stdout]     | ------------ method `merge_contribution` not found for this struct
[INFO] [stdout] ...
[INFO] [stdout] 163 |     let merged = current.merge_contribution(contribution);
[INFO] [stdout]     |                          ^^^^^^^^^^^^^^^^^^ method not found in `Mixed`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0599]: no method named `merge` found for struct `WithGenerics<T>` in the current scope
[INFO] [stdout]    --> tests/derive_state_merge.rs:179:6
[INFO] [stdout]     |
[INFO] [stdout] 113 |   struct WithGenerics<T>
[INFO] [stdout]     |   ---------------------- method `merge` not found for this struct
[INFO] [stdout] ...
[INFO] [stdout] 175 |       let merged = WithGenerics::<i32> {
[INFO] [stdout]     |  __________________-
[INFO] [stdout] 176 | |         items: Annotated::new(10, Max::new()),
[INFO] [stdout] 177 | |         label: "before".into(),
[INFO] [stdout] 178 | |     }
[INFO] [stdout] 179 | |     .merge(WithGenerics::<i32> {
[INFO] [stdout]     | |     -^^^^^ method not found in `WithGenerics<i32>`
[INFO] [stdout]     | |_____|
[INFO] [stdout]     |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] Some errors have detailed explanations: E0432, E0433, E0599.
[INFO] [stdout] 
[INFO] [stdout] For more information about an error, try `rustc --explain E0432`.
[INFO] [stdout] 
[INFO] [stderr] error: could not compile `entelix-graph-derive` (test "derive_state_merge") due to 10 previous errors
[INFO] running `Command { std: "docker" "inspect" "546b2a4475c298d595f0f7d1165d79607b68d5b28c6409c2500470fd0189577f", kill_on_drop: false }`
[INFO] running `Command { std: "docker" "rm" "-f" "546b2a4475c298d595f0f7d1165d79607b68d5b28c6409c2500470fd0189577f", kill_on_drop: false }`
[INFO] [stdout] 546b2a4475c298d595f0f7d1165d79607b68d5b28c6409c2500470fd0189577f
